home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 701-725 / 708 / intuisup / intuisup42.lha / Intuisup / source.lha / Editor / imports.h < prev    next >
Text File  |  1992-01-04  |  2KB  |  61 lines

  1. /* $Revision Header *** Header built automatically - do not edit! ***********
  2.  *
  3.  *    (C) Copyright 1991 by Torsten Jürgeleit
  4.  *
  5.  *    Name .....: imports.h
  6.  *    Created ..: Sunday 22-Dec-91 21:22:34
  7.  *    Revision .: 0
  8.  *
  9.  *    Date        Author                 Comment
  10.  *    =========   ====================   ====================
  11.  *    22-Dec-91   Torsten Jürgeleit      Created this file!
  12.  *
  13.  ****************************************************************************
  14.  *
  15.  *    Imports
  16.  *
  17.  * $Revision Header ********************************************************/
  18.  
  19.     /* Import from main.c */
  20.  
  21. IMPORT struct GfxBase        *GfxBase;
  22. IMPORT struct IntuitionBase    *IntuitionBase;
  23. IMPORT struct ArpBase        *ArpBase;
  24. IMPORT struct Library        *IntuiSupBase;
  25.  
  26. IMPORT struct Screen        wb_screen;
  27. IMPORT struct Window        *ewin, *pwin;
  28. IMPORT struct TextAttr        topaz60_attr, topaz80_attr;
  29. IMPORT struct NewWindow        project_new_window;
  30.  
  31. IMPORT struct TemplateList    template_list;
  32. IMPORT struct Template        *selected_template,
  33.                 *info_template;
  34. IMPORT struct Box        current_box;
  35.  
  36. IMPORT struct GadgetData    *use_gd;
  37. IMPORT struct Dimension        min_dimension[];
  38. IMPORT struct FileRequester    *project_file_requester,
  39.                 *csource_file_requester;
  40.  
  41. IMPORT struct GadgetData    text_gadget_data[], normal_gadget_data[];
  42.  
  43. IMPORT struct GadgetData    list_gadget_data[];
  44.  
  45. IMPORT APTR    eri, pri, egl, eml, use_gl;
  46.  
  47. IMPORT BYTE     *template_type_text_array[];
  48. IMPORT BYTE    *default_mx_text_array[], *default_cycle_text_array[],
  49.         *default_listview_text_array[];
  50.  
  51. IMPORT BYTE    editor_window_title[], project_window_title[];
  52.  
  53. IMPORT USHORT    snap_offset_table[];
  54.  
  55. IMPORT USHORT    editor_mode, snap_offset, template_type;
  56.  
  57. IMPORT USHORT    modify_mode, mouse_button;
  58. IMPORT SHORT    last_snap_x, last_snap_y;
  59.  
  60. IMPORT BOOL    info_displayed;
  61.